home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
harderr.zip
/
HARDMAKE.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-10-06
|
550b
|
23 lines
@echo off
GOTO BEGIN
This batch file compiles and links the HARDERR.EXE program.
It assumes that you have a functional MICROSOFT C working environment
with MASM on-line and that the Command Line is being used.
The equivalent of the following environment is required:
PATH=D:\msc\bin;
SET INCLUDE=D:\MSC\INCLUDE
SET LIB=D:\MSC\LIB
SET TMP=D:\MSC\TMP
SET CL=/AL /Zp1
:BEGIN
CL HARDERR.C /c
MASM INT24,INT24,NUL,NUL
LINK HARDERR INT24,,NUL,LLIBCE.LIB /E /NOD;
Echo We Now Return to Normal Programming.